home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 26.zip / BS1 part 26 / Powervisor v1.10b disk1.adf / s / pv / PrintHist.pv < prev    next >
Text File  |  1991-09-23  |  295b  |  17 lines

  1. /* Print all the lines in the history buffer */
  2. /* Execute this script with: rx s:pv/printhist */
  3. /* Version 1.1   Mon Sep 23 15:01:14 1991 */
  4.  
  5. options results
  6.  
  7. 'void *({pvcall 36}+166)'
  8. line=result
  9.  
  10. do while line ~= 0
  11.     'print \('||line+10||',%s)'
  12.     'print \0a'
  13.     'void *'||line
  14.     line=result
  15. end
  16.  
  17.